* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
    gap: 20px;
}

body {
    line-height: 1.2;
    color: #333;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
    url(IMAGES/ZedTop20\ Logo.png) no-repeat center center fixed;
    background-size: contain;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.welcome-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #0a0d15;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #46a3ff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #46a3ff;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    font-size: 1.5rem;
}

.nav-links a:hover {
    color: #4a6cf7;
}
@media (max-width: 600px) {
    .navbar {
        padding: 0.6rem 4%;
        flex-wrap: nowrap; 
    }

    .logo {
        gap: 8px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .nav-text {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0;
        white-space: nowrap;
    }
}

.intro-banner {
    background: linear-gradient(135deg, #2575fc, #0a0d15);
    color: #fff;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
    position: relative;
    z-index: 10;
    overflow: visible; 
    box-shadow: 0.2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.banner-container {
    max-width: 900px;
    width: 100%;
    overflow: visible; 
    height: 5rem;
    margin-top: 8rem;
    margin-bottom: 4rem;
}

.banner-container h1 {
    font-size: 2.4rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.banner-container p {
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .intro-banner {
        padding: 4rem 1.5rem;
    }
    .banner-container h1 {
        font-size: 2rem;
    }
    .banner-container p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .intro-banner {
        padding: 3.5rem 1.5rem;
        min-height: 45vh;
    }
    .banner-container h1 {
        font-size: 1.8rem;
    }
    .banner-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-banner {
        padding: 3rem 1rem;
        min-height: 40vh;
    }
    .banner-container h1 {
        font-size: 1.5rem;
    }
    .banner-container p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .intro-banner {
        padding: 2rem 0.5rem;
        min-height: 30vh;
    }

    .banner-container h1 {
        font-size: 1.2rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .banner-container p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}



.slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: url("IMAGES/Campus.jpg") center/cover no-repeat;
}



.slide-track {
    display: flex;
    width: calc(250px * 40);
    animation: scroll 80s linear infinite;
    animation-direction: reverse;
}

.slideshow img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    background-color: white;
    margin-right: 40px;
    border-radius: 20px;
    filter: opacity(0.9);
    transition: transform 0.3s;
    padding: 10px;
    box-sizing: border-box;
  
    
}

.slideshow img:hover { transform: scale(1.05); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .slideshow { height: 250px; }
    .slideshow img { width: 180px; }
}
@media (max-width: 480px) {
    .slideshow { height: 180px; }
    .slideshow img { width: 140px; }
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}


.hero-content {
    flex: 1;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 900px;  
    margin: 0 auto;    
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    text-align: center;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem; 
    color: #444;
    line-height: 1.8;
}

.intro-section { display: flex; justify-content: center; padding: 80px 20px; }

.intro-card {
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}

.intro-card h1, .intro-card p, .intro-card .btn { position: relative; z-index: 1; }

.intro-card h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.intro-card p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
}


.btn.explore-btn {
    padding: 15px 30px;
    background-color: #1e3c72;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn.explore-btn:hover {
    background-color: #030a30;
    transform: translateY(-6px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-buttons { display: flex; justify-content: center; }

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
}

.btn.primary {
    background: linear-gradient(135deg, #1b1f3b, #3a416f);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0.8px 5px rgba(19, 18, 19, 0.5);
    background: linear-gradient(135deg, #3a416f, #1b1f3b);
}
.features {
    padding: 4rem 5%;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 5rem;
    text-align: center;
    color: #222;
    position: relative;
}

.features h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: #2575fc;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 3rem; 
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: rgba(107, 17, 203, 0.288);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: #1b1f3b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    margin-bottom: 1.3rem;
    color: #1e3c72;
    font-size: 1.7rem;
}

.card p {
    line-height: 1.6;
    font-family: cursive;
    font-size: 1.5rem;
    color: #333;
}


@media (max-width: 900px) {
    .feature-cards {
        gap: 2rem;
    }

    .card {
        max-width: 300px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        padding-left: 0;
    }

    .graphic-container {
        width: 250px;
        height: 250px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1rem;
    }

    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 400px) {
    .features {
        padding: 3rem 3%;
    }

    .card {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .feature-cards {
        gap: 1rem;
    }
}



.about-page {
    
    padding-top: 90px;
    line-height: 1.2;
    color: #333;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
    url(IMAGES/ZedTop20\ Logo.png) no-repeat center center fixed;
    background-size: contain;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.about-hero {
    display: flex;
    flex-direction: column;     
    align-items: center;          
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}


.about-hero h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1e3c72;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-family: cursive;
    color: #222;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}


.about-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: linear-gradient(145deg, #1b1f3b, #3a416f);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
}
.about-card h2{
    text-align: center;
}
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.about-card p {
    color: whitesmoke;
    line-height: 1.6;
    font-family: 'Times New Roman', Times, serif;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(27, 31, 59, 0.6); 
    border-radius: 15px;
    z-index: 0;
}

.about-card h3,
.about-card p {
    position: relative;
    z-index: 1; 
}


@media (max-width: 900px) {
    .about-hero {
        padding: 3rem 2rem;
    }

    .about-details {
        gap: 1.5rem;
    }

    .about-card {
        width: 45%; 
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.4rem;
    }

    .about-card p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero h2 {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .about-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-card {
        width: 90%; 
        padding: 1.2rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .about-hero h2 {
        font-size: 1rem;
    }

    .about-card {
        padding: 1rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }
}




.contact-page {
    padding-top: 90px;
    line-height: 1.2;
    color: #333;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
    url(IMAGES/ZedTop20\ Logo.png) no-repeat center center fixed;
    background-size: contain;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.contact-hero {
    display: flex;
    flex-direction: column;      
    align-items: center;         
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}



.contact-page .hero-content {
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;                    
    border-radius: 15px;                  
    max-width: 1000px;                     
    margin: 4rem auto 2rem auto;          
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

.contact-hero h1,
.contact-hero h2 {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(19, 18, 18);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: cursive;
    color: #222;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
}


.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: linear-gradient(145deg, #1b1f3b, #3a416f);
    padding: 2rem;
    border-radius: 15px;
    width: 210px;
    text-align: center;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #46a3ff;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #007BFF;
}

.contact-item h4 {
    word-wrap: break-word;
    overflow-wrap: break-word; 
    hyphens: auto; 
    font-size: 1.2rem;
}

.contact-item h4 a {
    display: inline-block;
    max-width: 100%;
    text-align: center; 
    color: rgb(243, 210, 148);
    text-decoration: none;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}


.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(145deg, #1b1f3b, #3a416f);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.contact-form h5{
    font-size: 1.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #46a3ff;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-buttons button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #4a6cf7;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#sendWhatsApp {
    background: #25D366;
}

.form-buttons button:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .contact-info { gap: 1.5rem; }
    .contact-item { width: 45%; padding: 1.5rem; }
    .contact-form { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .contact-hero { padding: 2rem 1rem; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero h2 { font-size: 1.2rem; margin-bottom: 2rem; }

    .contact-info { flex-direction: column; align-items: center; gap: 1rem; }
    .contact-item { width: 90%; padding: 1.2rem; }
    .contact-form { padding: 1.2rem; }
    .form-buttons button { font-size: 0.9rem; padding: 0.7rem; }
}

@media (max-width: 400px) {
    .contact-item { padding: 1rem; }
    .contact-item h3, .contact-item h4 { font-size: 1.2rem; }
    .contact-form { padding: 1rem; }
    .form-buttons button { font-size: 0.85rem; padding: 0.6rem; }
}




.site-footer {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: auto;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-column {
    flex: 1;
    min-width: 250px;
}

.site-footer .footer-column h3 {
    font-size: 1.8rem;
    color: #a6a6a6;
    margin-bottom: 10px;
    font-weight: bold;
}

.site-footer .footer-column p {
    font-size: 1rem;
    color: #ffffffcc;
    line-height: 1.6;
    margin: 0.2rem 0;
}

.site-footer .footer-column p a {
    font-size: 1rem;
    color: rgba(238, 175, 57, 0.986);
    line-height: 1.6;
    margin: 0.2rem 0;
    text-decoration: none;

}

.site-footer .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff55;
    padding-top: 15px;
    width: 100%;
    font-size: 0.9rem;
    color: #ffffffaa;
}


@media (max-width: 1024px) {
    .site-footer .footer-top {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
        gap: 20px;
    }

    .site-footer .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .site-footer .footer-column h3 {
        font-size: 1.5rem;
    }

    .site-footer .footer-column p {
        font-size: 0.95rem;
    }

    .site-footer .footer-bottom {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px;
        gap: 15px;
    }

    .site-footer .footer-column h3 {
        font-size: 1.3rem;
    }

    .site-footer .footer-column p {
        font-size: 0.9rem;
    }

    .site-footer .footer-bottom {
        font-size: 0.8rem;
    }
}
